home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / sos3-2.lha / src / cfe / cfe_err.c next >
C/C++ Source or Header  |  1992-01-23  |  3KB  |  58 lines

  1. /* --------------------------------------------------------------------------
  2.  * Copyright 1992 by Forschungszentrum Informatik (FZI)
  3.  *
  4.  * You can use and distribute this software under the terms of the licence
  5.  * you should have received along with this program.
  6.  * If not or if you want additional information, write to
  7.  * Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
  8.  * D-7500 Karlsruhe 1, Germany.
  9.  * --------------------------------------------------------------------------
  10.  */
  11. #include "cfe_err.h"
  12.  
  13. const err_msg err_CFE_AMBIGUOUS_GEN_PARAMS="ambiguous generic parameters";
  14. const err_msg err_CFE_AMBIGUOUS_METHODS="ambiguous methods";
  15. const err_msg err_CFE_ASSIGN_WITHOUT_EQUAL="assign is defined but equal is not";
  16. const err_msg err_CFE_CLASS_EXPECTED="class name expected";
  17. const err_msg err_CFE_GENERIC_TYPE_EXPECTED="generic type expected";
  18. const err_msg err_CFE_EQUAL_WITHOUT_HASH="equal is defined but hash_value is not";
  19. const err_msg err_CFE_FULL_GENERIC="type was used as class name; no generic allowed";
  20. const err_msg err_CFE_GEN_PARAM_MISMATCH="generic parameter mismatch";
  21. const err_msg err_CFE_INTERNAL="internal compiler error";
  22. const err_msg err_CFE_INVALID_EXT_SIZE="invalid size for external type";
  23. const err_msg err_CFE_INVALID_IMPORT="invalid name of imported module";
  24. const err_msg err_CFE_INVALID_LOCAL_METHOD="invalid signature of local method";
  25. const err_msg err_CFE_INVALID_OVERLOADING="invalid overloading";
  26. const err_msg err_CFE_INVALID_REDEFINITION="invalid redefinition";
  27. const err_msg err_CFE_LEXICAL_ERROR="lexical error";
  28. const err_msg err_CFE_MULTIPLE_TYPE_DECL="multiple type declaration";
  29. const err_msg err_CFE_NO_FILE="no file";
  30. const err_msg err_CFE_NO_GENERIC_TYPE="generic type not allowed";
  31. const err_msg err_CFE_NO_KERNEL="no kernel schema";
  32. const err_msg err_CFE_NOT_DECLARED="no declaration in schema";
  33. const err_msg err_CFE_RESERVED_SCHEMA_NAME="schema name is reserved";
  34. const err_msg err_CFE_SCRAMBLED_INSTANTIATION="scrambled generic instantiation";
  35. const err_msg err_CFE_TOO_MANY_LITERALS="too many literals";
  36. const err_msg err_CFE_UNDECL_CLASS="undeclared class";
  37. const err_msg err_CFE_UNKNOWN_TYPE="unknown type";
  38. const err_msg err_CFE_USAGE="usage: cfe [-E] <input file>";
  39.  
  40. const err_msg err_CFE_NO_ABSTRACT_FUNCS="abstract functions not yet implemented";
  41. const err_msg err_CFE_NO_DEFINITE_FUNCS="definite functions not yet implemented";
  42. const err_msg err_CFE_NO_LOCAL_FUNCS="local functions not allowed";
  43. const err_msg err_CFE_NO_VALUE_FUNCS="value functions not allowed";
  44.  
  45. const err_msg err_CFE_NO_DEFINITE_COMPS="definite components not yet implemented";
  46. const err_msg err_CFE_NO_STATIC_COMPS="static components not yet implemented";
  47. const err_msg err_CFE_NO_VALUE_COMPS="value components not yet implemented";
  48.  
  49. /* --- old error messages ---
  50.    const err_msg err_CFE_CONV_OP_ERROR="conversion operator with parameters";
  51.    const err_msg err_CFE_INVALID_CREATE_PARAMS="invalid create parameters";
  52.    const err_msg err_CFE_MISSING_INIT="missing initialization";
  53.    const err_msg err_CFE_RESERVED_METHOD_NAME="method name is reserved";
  54.    const err_msg err_CFE_SUPER_CLASS_NOT_IMPL="instance as super class not implemented";
  55.    const err_msg err_CFE_SYNTAX_ERROR="syntax error";
  56.    const err_msg err_CFE_NO_REF_FOR_GEN_PARAM="generic parameter type not allowed for reference parameter";
  57. */
  58.